home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / image.dtd < prev    next >
Extensible Markup Language  |  2005-09-10  |  2KB  |  76 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.  
  4.     OpenOffice.org - a multi-platform office productivity suite
  5.  
  6.     $RCSfile: image.dtd,v $
  7.  
  8.     $Revision: 1.4 $
  9.  
  10.     last change: $Author: rt $ $Date: 2005/09/08 23:56:10 $
  11.  
  12.     The Contents of this file are made available subject to
  13.     the terms of GNU Lesser General Public License Version 2.1.
  14.  
  15.  
  16.       GNU Lesser General Public License Version 2.1
  17.       =============================================
  18.       Copyright 2005 by Sun Microsystems, Inc.
  19.       901 San Antonio Road, Palo Alto, CA 94303, USA
  20.  
  21.       This library is free software; you can redistribute it and/or
  22.       modify it under the terms of the GNU Lesser General Public
  23.       License version 2.1, as published by the Free Software Foundation.
  24.  
  25.       This library is distributed in the hope that it will be useful,
  26.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  27.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  28.       Lesser General Public License for more details.
  29.  
  30.       You should have received a copy of the GNU Lesser General Public
  31.       License along with this library; if not, write to the Free Software
  32.       Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  33.       MA  02111-1307  USA
  34.  
  35. -->
  36.  
  37. <!ENTITY % url "CDATA">
  38.  
  39. <!-- URI reference -->
  40. <!ENTITY % uriReference "CDATA">
  41.  
  42. <!-- a color value having the format #rrggbb -->
  43. <!ENTITY % color                "CDATA">
  44.  
  45. <!-- determine the mask mode of the image bitmap -->
  46. <!ENTITY % maskMode "(maskcolor|maskbitmap)">
  47.  
  48. <!ELEMENT image:entry EMPTY>
  49. <!ATTLIST image:entry
  50.     image:command %url; #REQUIRED
  51.     image:bitmap-index CDATA #REQUIRED
  52. >
  53.  
  54. <!ELEMENT image:externalentry EMPTY>
  55. <!ATTLIST image:externalentry
  56.     image:command %url; #REQUIRED
  57.     xlink:href %uriReference; #REQUIRED
  58.     xlink:type CDATA #FIXED "simple"
  59. >
  60.  
  61. <!ELEMENT image:externalimages (image:externalentry*)>
  62. <!ELEMENT image:images (image:entry*)>
  63. <!ATTLIST image:images
  64.     xlink:href %uriReference; #REQUIRED
  65.     xlink:type CDATA #FIXED "simple"
  66.     image:maskmode %maskMode; "maskcolor"
  67.     image:maskcolor %color; "#000000"
  68.     image:maskurl %url; #IMPLIED
  69. >
  70.  
  71. <!ELEMENT image:imagescontainer (image:images*, image:externalimages?)>
  72. <!ATTLIST image:imagescontainer
  73.     xmlns:image CDATA #FIXED "http://openoffice.org/2001/image"
  74.     xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"
  75. >
  76.